-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuper Reduced String.c
41 lines (40 loc) · 1.07 KB
/
Super Reduced String.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* @Repository HackerRank Soulutions
* @file Super Reduced String
* @author Abdelrahman Ahmed Moussa ([email protected])
* @copyright Copyright (c) 2024
*
*/
/*------------------------------------------------------------------------------*/
/* */
/* I didn't used any functions from <string.h> */
/* */
/*------------------------------------------------------------------------------*/
char* superReducedString(char* s)
{
static char localString[100]={'\0'};
int index=1;
int i;
localString[0]=s[0];
for (i=1 ; s[i]!='\0' ;i++)
{
if ( localString[index-1]==s[i])
{
index--;
}
else
{
localString[index]=s[i];
index++;
}
}
localString[index]='\0';
if (index==0)
{
return "Empty String";
}
else
{
return localString;
}
}